home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ For TASM / ALIASDOS.PAK / ALIAS.ASM next >
Assembly Source File  |  1996-02-21  |  643b  |  25 lines

  1. ;
  2. ;  alias.asm
  3. ;
  4. ;  Copyright (c) 1993 by Borland International, Inc.
  5. ;
  6. ;  This module will be tlib-ed into library.lib to define the aliases.
  7. ;
  8. ;  Part of the aliasdos example.
  9. ;
  10. ;  Build using the provided makefile using: "make -B".
  11.  
  12. ; Alias records for newuser.c
  13.  
  14. alias <_Set_Coords>               =  <_SetCoords>
  15. alias <_Draw_Happy_Face>          =  <_DrawHappyFace>
  16. alias <_Print_Message>            =  <_PrintMessage>
  17.  
  18. ; Alias record for cppuser.cpp
  19.  
  20. alias <@SetCoords$qii>            =  <_SetCoords>
  21. alias <@DrawHappyFace$qc>         =  <_DrawHappyFace>
  22. alias <@PrintMessage$qpc>         =  <_PrintMessage>
  23.  
  24. end
  25.